/**
 * ================= HERO PRO FINAL =================
 *
 * @format
 */

/* =========================================
   HERO BASE & FONDO
   ========================================= */

:root {
  --azul-denuncia: #ff0000;
  --azul-oscuro-pro: #bddfe6;
  --cyan-brillante: #ffffff;
  --blanco-glass: rgba(255, 255, 255, 0.92);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--azul-denuncia);
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(255, 255, 255) 0%,
    /* tinte navy muy sutil */ rgba(255, 255, 255, 0.97) 100%
      /* cream del login */
  );
  backdrop-filter: blur(1px);
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(255, 255, 255), transparent 70%);
  top: -10%;
  left: -5%;
  filter: blur(100px);
  animation: glowMove 15s ease-in-out infinite;
  z-index: 2;
}

.hero-wrapper {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

/* LOGO Y TEXTO HERO */
.hero-logo-pro {
  width: 110%;
  max-width: 550px;
  margin-bottom: 1em;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
  animation: floatSoft 7s ease-in-out infinite;
}

.hero-text-pro {
  color: #111827 !important;
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 3rem;
  font-weight: 400;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.hero-text-pro strong {
  color: var(--cyan-brillante);
  font-weight: 600;
}

/* BOTÓN PREMIUM */
.btn-hero-primary {
  display: inline-block;
  background: linear-gradient(135deg, #fbfeff, #fafafa);
  color: #000000 !important;
  padding: 1.1rem 3.2rem;
  border-radius: 60px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(13, 202, 240, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-primary:hover {
  transform: translateY(-5px) scale(1.05);
  background: #0dcaf0;
  color: var(--azul-oscuro-pro) !important;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

/* IMAGEN DERECHA Y CUADRO GLASS */
.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image-pro {
  border-radius: 24px;
  border: 8px solid rgba(255, 255, 255, 0);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  transform: rotate(1.5deg);
  transition: 0.6s ease;
  width: 100%;
  max-width: 520px;
}

.hero-image-pro:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-info-box {
  position: absolute;
  bottom: -15px;
  right: -5px;
  background: var(--blanco-glass);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 24px;
  color: var(--azul-oscuro-pro);
  width: 320px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 15;
}

.info-badge {
  background: var(--azul-oscuro-pro);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}

.info-box-footer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--azul-denuncia);
  display: flex;
  align-items: center;
  margin-top: 10px;
}

/* =========================================
   PANEL DE INFORMACIÓN (POST-HERO)
   ========================================= */
.info-panel {
  background-color: #000000;
  border: 1px solid rgba(6, 6, 6, 0.35);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 2rem;
}

.info-panel-header {
  background: rgb(252, 254, 255);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(192, 235, 243, 0.3);
}

.info-panel-icon {
  width: 50px;
  height: 50px;
  background-color: var(--cyan-brillante);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.info-panel-body {
  padding: 1.8rem;
}
.info-panel-body p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.1rem;
}

.legal-warning {
  background-color: rgba(255, 193, 7, 0.15);
  border-left: 4px solid #ffc107;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.confidential-box {
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--azul-oscuro-pro);
  border: 1px dashed var(--azul-denuncia);
}

.scroll-indicator {
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes glowMove {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(60px, -40px);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 120px 0 60px;
  }
  .hero-logo-pro {
    max-width: 80%;
    margin: 0 auto 2rem;
  }
  .hero-text-pro {
    margin: 0 auto 3rem;
  }
  .hero-info-box {
    position: relative;
    right: 0;
    bottom: 0;
    margin: -30px auto 0;
    width: 90%;
  }
}
/*--------------------------------------------------- */

/*--------------------------------------------------- */

/*--------------------------------------------------- */

/*--------------------------------------------------- */

/* --- Estilo Panel Moderno --- */

/* ===============================
   PANEL MODERNO INSTITUCIONAL
================================= */

.panel-moderno {
  background: #ffffff;
  border: 1px solid #e5eaf0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.panel-moderno:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.bg-faded {
  background-color: #f8fafc;
}

/* ===============================
   CABECERA
================================= */

.icon-box-pro {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0f4c5c, #1b6c7a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(15, 76, 92, 0.25);
}

/* ===============================
   GRID LEGAL
================================= */

.legal-item h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1b6c7a;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.legal-item p {
  font-size: 0.95rem;
  color: #2d3748;
  margin-bottom: 0;
  font-weight: 500;
}

/* ===============================
   TARJETAS LATERALES
================================= */

.sanction-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.sanction-card:hover {
  border-color: #d0d7df;
  background: #f9fbfd;
  transform: translateY(-2px);
}

.s-icon {
  color: #1b6c7a;
  font-size: 1.05rem;
  margin-top: 2px;
}

.s-text span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
}

.s-text small {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}

/* ===============================
   BADGE DE PROTECCIÓN
================================= */

.protection-badge {
  background: #edfdfd;
  color: #0f766e;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid #c6f6f6;
}

/* ===============================
   FOOTER
================================= */

.panel-footer {
  padding: 18px 30px;
  background: #f4f7fa;
  border-top: 1px solid #e5eaf0;
}

/* ===============================
   TIPOGRAFÍA GENERAL
================================= */

.text-secondary {
  color: #5a6b7b !important;
  line-height: 1.7;
}
/*--------------------------------------------------- */

/*--------------------------------------------------- */

/*--------------------------------------------------- */

/* sugrencias y pasos */
/* ================= ABOUT CARD PRO ================= */

/* --- Blueprint Evolucionado --- */
/* --- Blueprint Card Ajustada (Más compacta) --- */
.blueprint-card {
  background: #ffffff;
  border-radius: 12px; /* Reducido para mayor seriedad */
  border: 1px solid #edf2f7;
  overflow: hidden;
  max-width: 850px; /* Evita que se vea gigante en pantallas grandes */
  margin: 0 auto;
}

.blueprint-header-pro {
  padding: 1.5rem 2rem; /* Reducido de 3rem */
  background: linear-gradient(to right, #f8fafc, #ffffff);
  border-bottom: 1px solid #f1f5f9;
}

.badge-status-pro {
  background: #055160;
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Flujo de Línea Vertical */
.blueprint-body-pro {
  padding: 1.5rem 2rem; /* Reducido de 3rem */
  position: relative;
}

.flow-line-pro {
  position: absolute;
  left: 3.1rem; /* Ajustado al nuevo tamaño del marcador */
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #cbd5e1,
    #cbd5e1 4px,
    transparent 4px,
    transparent 8px
  );
}

.flow-step-pro {
  display: flex;
  align-items: center;
  margin-bottom: 1rem; /* Reducido de 1.5rem */
  position: relative;
  z-index: 2;
}

.flow-marker-pro {
  width: 34px; /* Reducido de 40px */
  height: 34px; /* Reducido de 40px */
  background: #ffffff;
  border: 2px solid #0dcaf0;
  color: #055160;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-right: 1.5rem; /* Reducido de 2rem */
  flex-shrink: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

/* Tarjetas Internas de cada paso */
.step-card-pro {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem; /* Reducido de 1.25rem */
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.step-card-pro:hover {
  border-color: #0dcaf0;
  transform: translateX(5px); /* Reducido de 10px */
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.02);
}

.step-icon-pro {
  width: 35px; /* Reducido de 45px */
  font-size: 1rem; /* Reducido de 1.2rem */
  color: #94a3b8;
  text-align: center;
  margin-right: 0.8rem;
}

.step-info-pro h5 {
  margin: 0;
  font-size: 0.95rem; /* Un poco más pequeño */
  font-weight: 700;
  color: #1e293b;
}

.step-info-pro p {
  margin: 0;
  font-size: 0.8rem; /* Reducido de 0.85rem */
  color: #64748b;
}

/* Botón Premium Compacto */
.blueprint-footer-pro {
  padding: 1.5rem 2rem; /* Reducido de 2.5rem */
  background: #f8fafc;
  text-align: center;
}

.btn-modern-pro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #055160, #0a7a8f);
  color: white !important;
  padding: 0.8rem 2rem; /* Reducido */
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(5, 81, 96, 0.2);
}

/*--------------------------------------------------- */

/*--------------------------------------------------- */

/*--------------------------------------------------- */

/* presentar denuncias */

/* pdf */

.formato-horizontal {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
  padding: 90px 0;
}

/* CAJA */
.formato-step {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0, 60, 120, 0.12);
  height: 100%;
}

.formato-step.result {
  background: #f8fbff;
}

/* NÚMERO */
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e3f2fd;
  color: #1565c0;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* TEXTO */
.formato-step h5 {
  font-weight: 700;
  color: #0d3b66;
}

.formato-step p {
  font-size: 14px;
  color: #6b8aa5;
}

/* INPUT */
.formato-input {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.formato-input input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #dce7f3;
}

.formato-input button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #1976d2;
  color: #fff;
  transition: 0.3s;
}

.formato-input button:hover {
  background: #1565c0;
}

/* CONECTOR */
.formato-connector {
  font-size: 28px;
  color: #90caf9;
  animation: moveArrow 1.8s infinite;
}

@keyframes moveArrow {
  0% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }
}

/* VISOR */
.formato-viewer {
  margin-top: 20px;
}

.viewer-placeholder {
  border: 2px dashed #cfe0f3;
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  color: #607d8b;
}

.viewer-placeholder i {
  font-size: 46px;
  color: #1976d2;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .formato-connector {
    display: none;
  }
}

/* mapas */

/* Sección contacto premium */
.contact-premium {
  background: linear-gradient(180deg, #f6f9fc, #ffffff);
}

/* Badge */
.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #388da8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Tarjetas */
.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-card.small {
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Iconos */
.contact-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(56, 141, 168, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card .icon-box i {
  font-size: 26px;
  color: #388da8;
}

/* Texto */
.contact-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-card p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

/* Mapas */
.map-card {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.map-card h6 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
  color: #388da8;
}

.map-card iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.badge-pulse {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}
/*--------------------------------------------------- */
/*--------------------------------------------------- */
/*--------------------------------------------------- */
/*--------------------------------------------------- */
/*--------------------------------------------------- */
/*--------------------------------------------------- */

/* --------------------------------------------------- */
/* --------------------------------------------------- */

:root {
  --primary-color: #0d6efd;
  --primary-light: rgba(13, 110, 253, 0.1);
}

.custom-contact-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 15px;
}

.custom-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: var(--primary-light);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

/* Ajuste para el iframe */
.map-container iframe {
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0);
}

/* Responsividad para móviles */
@media (max-width: 768px) {
  .map-container iframe {
    height: 200px !important;
  }
}
/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* --------------------------------------------------- */
/* --------------------------------------------------- */

/* =============================================
   FORMULARIOS DE DENUNCIA, HECHOS, EVIDENCIAS Y DENUNCIADO
   ============================================= */

.df-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 8px;
}

/* ── Cabecera verde única para todos ── */
.df-head {
  background: linear-gradient(135deg, #1647a3, #0f3a8a);
  padding: 20px 24px 16px;
  position: relative;
  overflow: hidden;
}

.df-head::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

/* Número de paso en la cabecera */
.df-head .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.df-head h5 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 2px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.df-head p {
  font-size: 11px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

/* Ícono decorativo derecho (distinto por paso) */
.df-head .head-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

/* ── Cuerpo ── */
.df-body {
  padding: 22px 24px 16px;
}

/* ── Separadores de sección ── */
.df-seccion {
  margin-bottom: 20px;
}

.df-seccion-titulo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #0f3a8a;
  border-bottom: 2px solid #e8eef8;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.df-seccion-titulo i {
  font-size: 13px;
  color: #1647a3;
}

/* ── Campos ── */
.df-body label.fw-semibold,
.df-body .form-label {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 5px;
  display: block;
}

.df-body .form-control {
  border-radius: 9px;
  border: 1.5px solid #e5e7eb;
  font-size: 13px;
  padding: 8px 12px;
  background: #fafafa;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.df-body .form-control:focus {
  border-color: #1647a3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 71, 163, 0.1);
  outline: none;
}

.df-body textarea.form-control {
  resize: vertical;
}

.df-body .input-group-text {
  border-radius: 9px 0 0 9px;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 13px;
}

.df-body .input-group .form-control {
  border-radius: 0 9px 9px 0;
}

/* ── Botón aceptar ── */
.btn-df-aceptar {
  background: linear-gradient(135deg, #1647a3, #0f3a8a);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 26px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn-df-aceptar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 71, 163, 0.3);
  color: #fff;
}

/* ── Pie del formulario ── */
.df-foot {
  padding: 14px 24px 20px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* ── Tarjeta interna (anonima / hechos) ── */
.df-card-inner {
  background: #f0f4fb;
  border: 1.5px solid #c5d5f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

/* ── Zona upload ── */
.df-upload {
  border: 2px dashed #c5d5f0;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  background: #f0f4fb;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.df-upload:hover {
  border-color: #1647a3;
  background: #e8eef8;
}

.df-upload i {
  font-size: 28px;
  color: #1647a3;
  display: block;
  margin-bottom: 8px;
}

.df-upload p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.df-upload small {
  font-size: 10px;
  color: #9ca3af;
}

.df-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* ── Animación entrada ── */
.tab-pane.show.active .df-wrap {
  animation: dfSlide 0.3s ease;
}

@keyframes dfSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .df-head {
    padding: 16px 16px 14px;
  }

  .df-body {
    padding: 16px 16px 12px;
  }

  .df-foot {
    padding: 12px 16px 16px;
  }

  .df-head .head-icon {
    font-size: 28px;
    right: 16px;
  }
}
